@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
@media (max-width: 63.9375em) {
  .h-f-m {
    display: none;
  }
}

@media (max-width: 39.997em) {
  .h-f-m {
    display: none;
  }
}

@media (max-width: 63.9375em) {
  .h-f-tm {
    display: none;
  }
}

@media (min-width: 40em) {
  .h-f-t {
    display: none;
  }
}

@media (min-width: 64em) {
  .h-f-d {
    display: none;
  }
}

@keyframes blur {
  from {
    transform: none;
  }
  to {
    transform: scale(1.03);
  }
}
@keyframes expand {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.slide-in {
  animation: slide-in 300ms ease-in-out forwards;
}

.slide-out {
  animation: slide-out 300ms ease-in-out forwards;
}

@keyframes slide-in {
  0% {
    visibility: hidden;
    transform: translateX(100%);
  }
  1% {
    visibility: visible;
  }
  100% {
    visibility: visible;
    transform: translateX(0%);
  }
}
@keyframes slide-out {
  0% {
    visibility: visible;
    transform: translateX(0%);
  }
  99% {
    visibility: hidden;
  }
  100% {
    transform: translateX(100%);
  }
}
.float1 {
  animation: float1 22000ms ease-in-out infinite forwards;
}

.float2 {
  animation: float2 22000ms ease-in-out infinite forwards;
}

.float3 {
  animation: float3 22000ms ease-in-out infinite forwards;
}

.float4 {
  animation: float4 22000ms ease-in-out infinite forwards;
}

@keyframes float1 {
  0% {
    transform: translate(-100%, 50%);
  }
  10% {
    transform: translate(0%, 100%);
  }
  40% {
    transform: translate(110%, 100%);
  }
  70% {
    transform: translate(290%, 150%);
  }
  90% {
    transform: translate(10%, 100%);
  }
  100% {
    transform: translate(-100%, 10%);
  }
}
@keyframes float2 {
  0% {
    transform: translate(20%, -10%);
  }
  10% {
    transform: translate(-150%, -50%);
  }
  40% {
    transform: translate(10%, -10%);
  }
  70% {
    transform: translate(-19%, 150%);
  }
  90% {
    transform: translate(-10%, 190%);
  }
  100% {
    transform: translate(20%, -15%);
  }
}
@keyframes float3 {
  0% {
    transform: translate(0%, -200%);
  }
  10% {
    transform: translate(-50%, -150%);
  }
  40% {
    transform: translate(-310%, -100%);
  }
  70% {
    transform: translate(10%, -150%);
  }
  90% {
    transform: translate(-100%, -290%);
  }
  100% {
    transform: translate(0%, -250%);
  }
}
@keyframes float4 {
  0% {
    transform: translate(20%, 150%);
  }
  10% {
    transform: translate(0%, -200%);
  }
  40% {
    transform: translate(250%, 200%);
  }
  70% {
    transform: translate(210%, -50%);
  }
  90% {
    transform: translate(20%, 60%);
  }
  100% {
    transform: translate(20%, 150%);
  }
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif !important;
  position: relative;
  overflow-x: hidden;
  background: #fcfcfc;
}
body.noscroll {
  overflow-y: hidden;
}
body a,
body p,
body h1,
body b {
  cursor: pointer;
}

.f {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.f-sb-ac {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-ac {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

main {
  overflow-x: hidden;
  padding-top: 55px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .container {
    margin: 0 30px;
  }
}
@media (min-width: 64em) {
  .container {
    margin: 0 auto;
  }
}
@media (min-width: 87.5em) {
  .container {
    max-width: 1600px;
    padding: 0 20px;
  }
}

.orange {
  color: #FF6F00;
}

.purple {
  color: #400095;
}

.button-purple {
  padding: 10px 22px;
  background: #400095;
  display: inline-block;
  border-radius: 18px;
  transition: all ease-in-out 300ms;
}
@media (min-width: 64em) {
  .button-purple {
    padding: 16px 26px;
    border-radius: 24px;
  }
}
.button-purple a {
  color: white;
  font-weight: 300;
}
.button-purple:hover {
  box-shadow: 0px 3px 8px rgba(125, 71, 211, 0.712);
}

a {
  text-decoration: none;
  font-size: 14px;
  color: #400095;
}

.loader {
  position: fixed;
  overflow: hidden;
  z-index: 100;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(65, 0, 149, 0.9333333333);
}
.loader img {
  height: 2.1875rem;
  animation: expand 1s ease-in-out infinite;
}
.loader .circle {
  width: 200px;
  height: 200px;
  border-top-color: white;
  border-radius: 50%;
  animation: blur 2s ease-in-out infinite;
  box-shadow: 2px 2px 13px white, -2px -2px 10px white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .circle .sm-circle {
  border: 1px solid white;
  height: 180px;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  animation-iteration-count: infinite;
}

.ani {
  animation: text 2s ease-in-out;
}

.dis {
  animation: dis 2s ease-in-out;
}

@keyframes text {
  from {
    transform: translateX(-50px);
  }
  to {
    transform: none;
  }
}
@keyframes dis {
  from {
    opacity: 0.8;
    transform: translatex(50px);
  }
  to {
    opacity: 1;
  }
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  height: 50px;
  position: relative;
  z-index: 3;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #400095;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.ham7 .top {
  stroke-dasharray: 40 82;
}

.ham7 .middle {
  stroke-dasharray: 40 111;
}

.ham7 .bottom {
  stroke-dasharray: 40 161;
}

.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
  stroke: white;
}

.ham7.active .middle {
  stroke-dashoffset: 23px;
  stroke: white;
}

.ham7.active .bottom {
  stroke-dashoffset: -83px;
  stroke: white;
}

.headers {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: white;
}
.headers .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 3px 0px 20px;
  position: relative;
  background: rgb(255, 255, 255);
}
@media (min-width: 64em) {
  .headers .header {
    margin: 15px 10px 15px 13px;
  }
}
.headers .header .logo {
  height: 30px;
}
@media (min-width: 64em) {
  .headers .header .logo {
    height: 36px;
  }
}
.headers .header .one {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headers .header .one .logo {
  height: 30px;
  transform: translateY(1px);
}
.headers .header .one .nav-menu a {
  margin: 0 10px;
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  border: none;
  font-size: 16px;
}
.headers .header .one .nav-menu a::before {
  content: "";
  position: absolute;
  top: 36px;
  width: 0%;
  height: 3px;
  border-radius: 2px;
  transition: all 300ms ease-in-out;
}
.headers .header .one .nav-menu a:hover {
  font-weight: 700;
  transform: translateY(-7px);
}
.headers .header .one .nav-menu a:hover::before {
  background: #400095;
  width: 100%;
}
.headers .header .one .lin {
  margin-right: 30px;
}
.headers .header .one .lin::before {
  display: none;
}
.headers .header .two .button-purple {
  margin: 0 5px;
}
@media (min-width: 64em) {
  .headers .header .third {
    display: none !important;
  }
}
.headers .header .overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(83, 46, 87, 0.678);
  display: none;
}
@media (min-width: 64em) {
  .headers .header .overlay {
    display: none !important;
  }
}
.headers .header .ham-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 30%;
  bottom: 0;
  z-index: 2;
  padding-top: 20px;
  background: #400095;
  visibility: hidden;
}
.headers .header .ham-menu a {
  display: block;
  margin: 30px 40px;
  color: white;
  position: relative;
  transition: all 300ms ease-in-out;
}
.headers .header .ham-menu a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  left: -15px;
  top: 41%;
  transition: all 300ms ease-in-out;
}
.headers .header .ham-menu a:hover {
  transform: translateX(8px);
  color: #6c6c6c;
}
.headers .header .ham-menu a:hover::before {
  opacity: 1;
}
.headers .header .ham-menu .footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 30px 10px 20px 10px;
  text-align: center;
  color: white;
}
.headers .header .ham-menu .footer a {
  display: inline;
  margin: 0;
}
.headers .header .ham-menu .footer a::before {
  display: none;
}
.headers .header .ham-menu .footer img {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  margin: 0 auto;
}
.headers .header .ham-menu .footer img:hover {
  transform: scale(1.06);
}
.headers .header .ham-menu .footer .fac {
  background: linear-gradient(180deg, #18acfe 0%, #0163e0 99.7%);
}
.headers .header .ham-menu .footer .twit {
  height: 21px;
  width: 21px;
  padding: 7px;
  background: #47acdf;
}
.headers .header .ham-menu .footer .linkedin {
  background: #1275b1;
}
.headers .header .ham-menu .footer .instagram {
  background: rgb(172, 34, 110);
}
.headers .header .ham-menu .footer p {
  font-size: 12px;
}

.footers {
  background: #400095;
  margin-bottom: 0;
  padding-bottom: 20px;
  -moz-text-size-adjust: none;
}
.footers .end {
  color: #ffffff;
  margin: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 300;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 20px;
}
.footers .end .icon p {
  padding: 5px 12px;
  border: 1px solid white;
}
.footers .end img {
  margin: 0 4px;
}
.footers footer {
  margin: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 20px;
  padding-top: 20px;
  row-gap: 5px;
  color: #ffffff;
}
.footers footer h2 img {
  height: 2.5rem;
}
.footers footer a {
  text-decoration: none;
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  transition: all 300ms ease-in-out;
}
.footers footer a:hover {
  color: #6c6c6c;
}
.footers footer p {
  font-size: 0.87rem;
}
.footers footer h3 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 3px;
}
@media (min-width: 64em) {
  .footers footer h3 {
    font-size: medium;
  }
}
@media (min-width: 64em) {
  .footers footer {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
@media (min-width: 40em) {
  .footers footer {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 64em) {
  .footers footer {
    display: flex;
    flex-wrap: wrap;
  }
}
.footers footer .jeseku {
  flex-basis: 100%;
  text-align: center;
}
@media (min-width: 40em) {
  .footers footer .jeseku {
    flex-basis: 40%;
    text-align: left;
  }
}
@media (min-width: 64em) {
  .footers footer .jeseku {
    flex-basis: 40%;
  }
}
.footers footer .product {
  flex-basis: 50%;
}
@media (min-width: 40em) {
  .footers footer .product {
    flex-basis: 15%;
    text-align: left;
  }
}
.footers footer .support {
  flex-basis: 50%;
}
@media (min-width: 40em) {
  .footers footer .support {
    grid-area: support;
    flex-basis: 15%;
    text-align: left;
  }
}
.footers footer .company {
  flex-basis: 50%;
}
@media (min-width: 40em) {
  .footers footer .company {
    flex-basis: 15%;
    text-align: left;
  }
}
.footers footer .legal {
  flex-basis: 50%;
}
@media (min-width: 40em) {
  .footers footer .legal {
    flex-basis: 15%;
    text-align: left;
  }
}
.footers footer .contact {
  flex-basis: 100%;
}
.footers footer .contact a {
  line-height: 1.3;
}
@media (min-width: 40em) {
  .footers footer .contact {
    flex-basis: 42%;
    text-align: left;
  }
}
.footers footer .social-media {
  flex-basis: 100%;
  text-align: center;
}
.footers footer .social-media a {
  display: inline-block;
  margin: 5px;
}
@media (min-width: 64em) {
  .footers footer .social-media a {
    margin: 2px;
  }
}
.footers footer .social-media a img {
  height: 35px;
  width: 35px;
  border-radius: 4px;
  transition: all 300ms ease-in-out;
}
.footers footer .social-media a img:hover {
  transform: scale(1.06);
}
.footers footer .social-media .fac {
  background: linear-gradient(180deg, #18ACFE 0%, #0163E0 99.7%);
}
.footers footer .social-media .twit {
  height: 21px;
  width: 21px;
  padding: 7px;
  background: #47ACDF;
}
.footers footer .social-media .linkedin {
  background: #1275B1;
}
.footers footer .social-media .instagram {
  background: rgb(172, 34, 110);
}
.footers footer .social-media .whatsapp {
  height: 36px;
  width: 37px;
}
@media (min-width: 40em) {
  .footers footer .social-media {
    grid-area: social-media;
    justify-self: center;
    text-align: center;
  }
}
@media (min-width: 64em) {
  .footers footer .social-media {
    flex-basis: 22%;
  }
}/*# sourceMappingURL=global.css.map */